home *** CD-ROM | disk | FTP | other *** search
- package java.util;
-
- final class Collections$CheckedMap$CheckedEntrySet$1 implements Iterator<Map.Entry<K, V>> {
- // $FF: renamed from: i java.util.Iterator
- Iterator<Map.Entry<K, V>> field_0;
- // $FF: synthetic field
- final Collections.CheckedMap.CheckedEntrySet this$0;
-
- Collections$CheckedMap$CheckedEntrySet$1(Collections.CheckedMap.CheckedEntrySet var1) {
- this.this$0 = var1;
- this.field_0 = this.this$0.s.iterator();
- }
-
- public boolean hasNext() {
- return this.field_0.hasNext();
- }
-
- public void remove() {
- this.field_0.remove();
- }
-
- public Map.Entry<K, V> next() {
- return new Collections.CheckedMap.CheckedEntrySet.CheckedEntry((Map.Entry)this.field_0.next(), this.this$0.valueType);
- }
- }
-